home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / libs / mlib / include / mcmap.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-26  |  675 b   |  25 lines

  1.  
  2. #ifndef __MCMAP_H
  3. #define __MCMAP_H
  4.  
  5. #define MCMAP_ID            0x0109
  6.  
  7. #define COLOR_CHANGE        0x0201
  8.  
  9. class MCMap : public MStGrid {
  10. public:
  11.                  MCMap (int x1, int y1, int x2, int y2,
  12.                       WORD TheLength, WORD TheWidth,
  13.                       WORD AHandle, WORD AnHParent = HROOT);
  14.                  MCMap (const RECT& ABox,
  15.                       WORD TheLength, WORD TheWidth,
  16.                       WORD AHandle, WORD AnHParent = HROOT);
  17.     virtual void             Draw (void);
  18.     virtual void             Draw (int cx, int cy); 
  19.     virtual WORD             Handler (EVENT event);
  20.     virtual inline classType isA (void) {return (MCMAP_ID);};
  21.                 ~MCMap (void);
  22. };
  23.  
  24. #endif
  25.